home *** CD-ROM | disk | FTP | other *** search
/ GFX Sensations 1 / Graphic Sensations - Volume 1.iso / tools / amiga / 3d_tools / font4d.lha / Font-4D-Demo / GetFont4DRexx.mrx < prev    next >
Encoding:
Text File  |  1994-03-04  |  317 b   |  23 lines

  1. /*
  2. ** This script shows how to obtain a list
  3. ** of an applications ARexx commands.
  4. */
  5.  
  6. options results
  7. address 'FONT4D.1'
  8.  
  9. /* read the list into a temporary file */
  10.  
  11. 'help t:_tmp'
  12.  
  13.  
  14. /* type the file to stdout */
  15.  
  16. address command "type t:_tmp"
  17.  
  18.  
  19. /* delete the temporary file */
  20.  
  21. address command "delete >nil: t:_tmp"
  22.  
  23.